projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eaa610c
)
* process.c (handle_child_signal): Call catch_child_signal if NS_IMPL_GNUSTEP.
author
Jan Djärv
<jan.h.d@swipnet.se>
Tue, 2 Jul 2013 12:46:43 +0000
(14:46 +0200)
committer
Jan Djärv
<jan.h.d@swipnet.se>
Tue, 2 Jul 2013 12:46:43 +0000
(14:46 +0200)
src/ChangeLog
patch
|
blob
|
history
src/process.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 13a9162caab1759ca255773c2aa3fb294cf7feec..d5907c64942d32196a2e145878e041fa7a15dc36 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,8
@@
+2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
+
+ * process.c (handle_child_signal): Call catch_child_signal if
+ NS_IMPL_GNUSTEP.
+
2013-07-02 Paul Eggert <eggert@cs.ucla.edu>
Don't convert function pointers to void * and back.
diff --git
a/src/process.c
b/src/process.c
index 5fe07a9c4fa9aef734f14162bfb92c79c7842ad4..9961697e67158367c0fdd05cbee0a0cd7799e225 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-6210,6
+6210,11
@@
handle_child_signal (int sig)
}
lib_child_handler (sig);
+#ifdef NS_IMPL_GNUSTEP
+ /* NSTask in GNUStep sets its child handler each time it is called.
+ So we must re-set ours. */
+ catch_child_signal();
+#endif
}
static void